home *** CD-ROM | disk | FTP | other *** search
/ Private: Geographic / Private: Geographic.iso / PANIC.DXR / 00013.ls < prev    next >
Encoding:
Text File  |  1998-03-23  |  737 b   |  31 lines

  1. on startMovie
  2.   repeat with n = 4 to 6
  3.     set the visible of sprite n to 0
  4.   end repeat
  5.   repeat with n = 8 to 9
  6.     set the visible of sprite n to 0
  7.   end repeat
  8. end
  9.  
  10. on menu
  11.   if rollOver(7) then
  12.     set the visible of sprite 4 to 1
  13.     repeat with n = 8 to 9
  14.       set the visible of sprite n to 1
  15.     end repeat
  16.   else
  17.     if (the mouseCast <> 9) and (the mouseCast <> 10) and (the mouseCast <> 11) and (the mouseCast <> 7) then
  18.       set the visible of sprite 4 to 0
  19.     end if
  20.   end if
  21.   repeat with n = 8 to 9
  22.     if the visible of sprite 4 = 1 then
  23.       if rollOver(n) then
  24.         set the visible of sprite (n - 3) to 1
  25.         next repeat
  26.       end if
  27.       set the visible of sprite (n - 3) to 0
  28.     end if
  29.   end repeat
  30. end
  31.